-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #2342 - Snowflake S3 Stage #2354
base: devel
Are you sure you want to change the base?
Fix #2342 - Snowflake S3 Stage #2354
Conversation
✅ Deploy Preview for dlt-hub-docs canceled.
|
70fed71
to
6fd1576
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the PR and extensive test suite! Your code looks good as well.
Please submit your changes against devel
branch. Unfortunately this version contains changes in gen_copy_sql
(vectorized scanner option) so you'll get conflicts with your current version.
@rudolfix done 👍 |
fbdd4aa
to
69924e9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the update. IMO vectorized scanner config options is not passed. also please mark your tests as essential (so we always run them - they are fast).
if you are ok with it: could you type signatures of your tests and fixtures? cursor probably can do that automatically.
we are typing all our tests and plan to make mypy more strict soon...
thanks!
Np on the tests... but I'm pretty sure use vectorized scanner is passed. There's a unit test that checks for it too. |
please take a look at those tests:
here's the deleted arg: https://github.com/dlt-hub/dlt/pull/2354/files#diff-f4f94b7bc9fa2649ffaa9cb51df285bca77b5ea826d5dc026ddfe6f61207c946L113 thanks for working on this :) |
c2cf509
to
0029f1e
Compare
Np! Sorry about that, it should work now. It's a pain that we can't emulate some of the destinations for local testing. I'm sure we could but it would be a real pain to set up... |
Description
This PR fixes the issue described in #2342. It also breaks out
gen_copy_sql
into it's own file and standalone function so it's easier to test.Related Issues
Additional Context